@devx-commerce/plugin-product-reviews
Version:
Product Reviews Plugin for Medusa
12 lines (11 loc) • 429 B
TypeScript
import { z } from "zod";
import { MiddlewareRoute } from "@medusajs/framework";
export declare const createProductReviewResponseDTO: z.ZodObject<{
content: z.ZodString;
}, "strip", z.ZodTypeAny, {
content: string;
}, {
content: string;
}>;
export type CreateProductReviewResponseDTO = z.infer<typeof createProductReviewResponseDTO>;
export declare const adminProductReviewResponseRouteMiddlewares: MiddlewareRoute[];